AlarmListSetFilterPrepare

 

Before using the 'AlarmListSetFilter' function, you can set additional conditions by using the 'AlarmListSetFilterPrepare' function.

 

void AlarmListSetFilterPrepare(int filter2);

 

Parameters

int filter2 : Depending on 'filter1' argument of AlarmListSetFilter function, this argument may not be used.

 

Return Value

None

 

Example 1

@AlarmListSetFilterPrepare(0);

@AlarmListSetFilter("Alarm1", 1, 5);

Description : If you execute the above statements, you can see alarms of Port 0 and 5 among all alarms.

 

Example 2

@AlarmListSetFilterPrepare(7);

@AlarmListSetFilterPrepare(8);

@AlarmListSetFilterPrepare(9);

@AlarmListSetFilter("Alarm1", 1, 10);

Description : If you execute the above statements, you can see alarms of Port 7,8,9 and 10 among all alarms.

 

Version Information

Supported Version : 9.5.0 or higher.

 

Relate items)

@AlarmListSetFilter()